Skip to content

Arduino due member function in attachInterrupt callback #5831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from

Conversation

straccio
Copy link

@straccio straccio commented Jan 10, 2017

In arduino due using std::function for a callback
for example:
std::function<void()> int_func =std::bind(&button::press,this); attachInterrupt(digitalPinToInterrupt(pin),int_func,FALLING);

A way to add member function for an interrupt callback.

std::function<void()> int_func =std::bind(&button::press,this);
attachInterrupt(digitalPinToInterrupt(pin),int_func,FALLING);
@straccio straccio changed the title Member function in attachInterrupt callback Arduino due member function in attachInterrupt callback Jan 10, 2017
@facchinm
Copy link
Member

Moved to arduino/ArduinoCore-sam#8

@facchinm facchinm closed this Jan 24, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Board: Arduino Due Applies only to the Due
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants